home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / com_and3.zip / DSZDOWN.CMD < prev    next >
OS/2 REXX Batch file  |  1989-10-09  |  713b  |  21 lines

  1. ; ----- DSZDOWN: Invoke DSZ to download.
  2. ; ----------------------------------------------------------------
  3. ;    Note: This script invokes DSZ, using the current comm port
  4. ;    settings.  Note that the 'rz' sent to DSZ invokes a ZMODEM
  5. ;    download.  Change 'rz' to 'rb' for YMODEM-BAtch...
  6. ; ----------------------------------------------------------------
  7. ;
  8. ;    Invoke DSZ
  9. ;
  10.     COMPARMS S1        ; read current settings
  11.     S2 =  "\comm\dsz\DSZ.COM port " * S1(14:14) * " rz " ; e.g. "DSZ port 2 rz "
  12.     RUN S2            ; Load and run DSZ
  13. ;
  14. ;    Play a tune to signal completion
  15. ;
  16.     IF SUCCESS
  17.        PLAY "T200MNO2G24O3C24E24G8G24G24G24G8E8E24E24E24E8C8E8C8O2G8"
  18.     ELSE
  19.        PLAY "ms t250 o2 c2d8e-cp4 >c2d8e-cp4g-1 p2"
  20.     ENDIF
  21.